home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_097 / cutandpaste / makefile.orig < prev    next >
Makefile  |  1992-05-06  |  241b  |  18 lines

  1. all: cut paste
  2.  
  3.  
  4. paste: paste.o spaste.o getopt.o
  5.     cc -o paste paste.o spaste.o getopt.o
  6.  
  7. cut: cut.o getopt.o
  8.     cc -o cut cut.o getopt.o
  9.  
  10. lint: lint_cut lint_paste
  11.  
  12. lint_cut:
  13.     lint cut.c getopt.c
  14.  
  15. lint_paste:
  16.     lint paste.c spaste.c getopt.c
  17.  
  18.